From e92ad65f027316849b66d2986027701060a6a15e Mon Sep 17 00:00:00 2001 From: "emellor@ewan" Date: Sun, 9 Oct 2005 11:53:34 +0100 Subject: [PATCH] Append a newline to error messages, so that they are parsed by XendCheckpoint.py correctly. Signed-off-by: Ewan Mellor --- tools/libxc/xc_linux_save.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libxc/xc_linux_save.c b/tools/libxc/xc_linux_save.c index 4720e4076a..ba3aff36a6 100644 --- a/tools/libxc/xc_linux_save.c +++ b/tools/libxc/xc_linux_save.c @@ -35,7 +35,7 @@ #define DEBUG 0 #if 1 -#define ERR(_f, _a...) do { fprintf(stderr, _f , ## _a); fflush(stderr); } while (0) +#define ERR(_f, _a...) do { fprintf(stderr, _f "\n" , ## _a); fflush(stderr); } while (0) #else #define ERR(_f, _a...) ((void)0) #endif -- 2.30.2